IDE extension that lets you fix coding issues before they exist!
Setup is effortless and analysis is automatic for most languages
Fast, accurate analysis; enterprise scalability
Return of boolean literal statements wrapped into if-then-else ones should be simplified.
if-then-else
if (expression) { return true; } else { return false; }
return expression;